diff options
Diffstat (limited to 'src/app/manga/[title]/page.jsx')
| -rw-r--r-- | src/app/manga/[title]/page.jsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/manga/[title]/page.jsx b/src/app/manga/[title]/page.jsx index e586d09..2db1634 100644 --- a/src/app/manga/[title]/page.jsx +++ b/src/app/manga/[title]/page.jsx @@ -2,7 +2,7 @@ import styles from "./title.module.css"; import Image from "next/image"; import Link from "next/link"; -export const runtime = 'edge'; +export const runtime = "edge"; export default async function MangaInfo({ params }) { const title = params.title; @@ -30,7 +30,7 @@ export default async function MangaInfo({ params }) { > <div className={styles.MangaEntries}> <Image - src={item.image} + src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=${item.image}`} width={160} height={250} alt="Manga Poster" |